home *** CD-ROM | disk | FTP | other *** search
/ Forging America - The Int…ive History of Bethlehem / ForgingAmerica.iso / pc / legacyintroduction.dxr / template elements_1_template movie script.ls < prev    next >
Encoding:
Text File  |  2003-01-01  |  584 b   |  43 lines

  1. global paused
  2.  
  3. on startMovie
  4.   specialfirstplaysound()
  5. end
  6.  
  7. on specialfirstplaysound
  8.   paused = 0
  9.   go(1)
  10. end
  11.  
  12. on playsound
  13.   paused = 0
  14.   go(marker(0))
  15.   sound(1).play(member(the frameLabel))
  16.   sprite(13).member = "stop"
  17. end
  18.  
  19. on stopsound
  20.   paused = 1
  21.   go(marker(0))
  22.   sound(1).stop()
  23.   sprite(13).member = "play"
  24. end
  25.  
  26. on dosoundtoggle
  27.   donotdomouseleave = 1
  28.   if paused = 1 then
  29.     playsound()
  30.   else
  31.     stopsound()
  32.   end if
  33. end
  34.  
  35. on grandcentraltemplate buttonchoice
  36.   case buttonchoice of
  37.     "nextpage":
  38.       go(marker(1))
  39.     "prevpage":
  40.       go(marker(-1))
  41.   end case
  42. end
  43.